type net/http.http2StreamError

29 uses

	net/http (current package)
		h2_bundle.go#L1401: type http2StreamError struct {
		h2_bundle.go#L1412: func http2streamError(id uint32, code http2ErrCode) http2StreamError {
		h2_bundle.go#L1413: 	return http2StreamError{StreamID: id, Code: code}
		h2_bundle.go#L1416: func (e http2StreamError) Error() string {
		h2_bundle.go#L2057: 	if _, ok := err.(http2StreamError); ok {
		h2_bundle.go#L3221: 		return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, invalid}
		h2_bundle.go#L3228: 		return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, err}
		h2_bundle.go#L4939: 			if se, ok := wr.write.(http2StreamError); ok {
		h2_bundle.go#L5214: 		_, isReset := wr.write.(http2StreamError)
		h2_bundle.go#L5264: 			case http2StreamError, http2handlerPanicRST, http2writeWindowUpdate:
		h2_bundle.go#L5352: 		case http2StreamError:
		h2_bundle.go#L5472: func (sc *http2serverConn) resetStream(se http2StreamError) {
		h2_bundle.go#L5515: 	case http2StreamError:
		h2_bundle.go#L5702: 	if e, ok := err.(http2StreamError); ok {
		h2_bundle.go#L5962: 	st.sc.writeFrameFromHandler(http2FrameWriteRequest{write: http2StreamError{
		h2_bundle.go#L7291: 	case http2StreamError:
		h2_bundle.go#L8024: 	if se, ok := err.(http2StreamError); ok {
		h2_bundle.go#L8970: 			if se, ok := err.(http2StreamError); ok {
		h2_bundle.go#L9546: 		if se, ok := err.(http2StreamError); ok {
		h2_bundle.go#L9607: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9636: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9964: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9972: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9981: 			rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L10228: 			rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L10704: func (se http2StreamError) writeFrame(ctx http2writeContext) error {
		h2_bundle.go#L10708: func (se http2StreamError) staysWithinBuffer(max int) bool { return http2frameHeaderLen+4 <= max }
		h2_bundle.go#L11022: 		if se, ok := wr.write.(http2StreamError); ok {
		h2_error.go#L13: func (e http2StreamError) As(target any) bool {